#app {
  height: 100vh;
}
#app .app-wrapper {
  position: relative;
  height: 100%;
}
#app .app-wrapper .img-container {
  width: 100%;
  height: 100%;
  overflow: hidden;
}
#app .app-wrapper .img-container .home-bg {
  display: block;
  width: 100%;
  height: 100%;
  animation-name: imgscale;
  animation-timing-function: ease-in-out;
  animation-iteration-count: infinite;
  animation-duration: 20s;
}
#app .app-wrapper .container {
  height: 100%;
  width: 1440px;
  margin: 0 auto;
}
#app .app-wrapper .home-logo {
  position: absolute;
  top: 30px;
  left: 56px;
}
#app .app-wrapper .home-logo img {
  width: 183px;
  height: auto;
}
#app .app-wrapper .content-wrap {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
#app .app-wrapper .content-wrap .top-container {
  flex: 2;
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}
#app .app-wrapper .content-wrap .top-container .center-box {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0 20px;
}
#app .app-wrapper .content-wrap .top-container .center-box > .bin-row:nth-child(1) {
  padding: 100px 0 50px 0;
}
#app .app-wrapper .content-wrap .top-container .center-box .title {
  padding-bottom: 28px;
  display: block;
}
#app .app-wrapper .content-wrap .top-container .center-box .desc {
  color: #fff;
}
#app .app-wrapper .content-wrap .top-container .center-box .desc p {
  font-size: 24px;
  line-height: 160%;
  color: #adffff;
}
#app .app-wrapper .content-wrap .top-container .center-box .label {
  color: #fff171;
  font-size: 28px;
  line-height: 150%;
  padding-bottom: 20px;
}
#app .app-wrapper .content-wrap .top-container .center-box .label span {
  color: #fff;
  font-size: 12px;
  line-height: 150%;
}
#app .app-wrapper .content-wrap .top-container .center-box .list ul li {
  color: #fff;
  font-size: 12px;
  line-height: 150%;
  padding: 4px 0;
}
#app .app-wrapper .content-wrap .bottom-container {
  width: 100%;
}
#app .app-wrapper .content-wrap .bottom-container .content {
  width: 100%;
  padding-bottom: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
}
#app .app-wrapper .content-wrap .bottom-container .content .bin-row {
  width: 100%;
}
#app .app-wrapper .content-wrap .bottom-container .content .item-box {
  flex: 1;
  height: 301px;
  display: flex;
  align-items: center;
  justify-content: center;
}
#app .app-wrapper .content-wrap .bottom-container .content .item-box .desc {
  width: 50%;
}
#app .app-wrapper .content-wrap .bottom-container .content .item-box .desc .title {
  color: #fff;
  font-size: 32px;
  line-height: 150%;
  padding-bottom: 30px;
}
#app .app-wrapper .content-wrap .bottom-container .content .item-box .desc .desc-item {
  color: #fff;
  font-size: 16px;
  padding: 6px 0;
}
#app .app-wrapper .content-wrap .bottom-container .content .item-box a {
  display: block;
  color: #fff;
  font-size: 14px;
  line-height: 150%;
  text-align: center;
  vertical-align: middle;
}
#app .app-wrapper .content-wrap .bottom-container .content .item-box a .btn-box {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 130px;
  height: 32px;
  border: 1px solid #fff;
}
#app .app-wrapper .content-wrap .bottom-container .content .com {
  background: url("../images/bloc/enter-home/enterprise-bg.png") center no-repeat;
  background-size: cover;
}
#app .app-wrapper .content-wrap .bottom-container .content .gov {
  background-color: rgba(0,228,255,0.4);
}
@media screen and (max-width: 767px) {
  #app .app-wrapper .home-logo {
    left: 20px;
    top: 20px;
  }
  #app .app-wrapper .img-container {
    display: none;
  }
  #app .app-wrapper .container {
    width: 95%;
  }
  #app .app-wrapper .content-wrap .top-container .center-box .title {
    padding-top: 10px;
    font-size: 18px;
    width: 80%;
    padding-bottom: 20px;
  }
  #app .app-wrapper .content-wrap .top-container .center-box .desc p {
    font-size: 20px;
  }
  #app .app-wrapper .content-wrap .top-container .label {
    font-size: 14px;
    padding-bottom: 4px;
  }
  #app .app-wrapper .content-wrap .top-container .list ul li {
    font-size: 8px;
  }
  #app .app-wrapper .content-wrap .top-container .center-box > .bin-row:nth-child(1) {
    padding: 60px 0 20px 0;
  }
  #app .app-wrapper .content-wrap .top-container .center-box .label {
    padding-bottom: 10px;
    font-size: 16px;
  }
  #app .app-wrapper .content-wrap .bottom-container .content .item-box {
    height: 180px;
  }
  #app .app-wrapper .content-wrap .bottom-container .content .item-box .desc .title {
    font-size: 20px;
    padding-bottom: 15px;
  }
  #app .app-wrapper .content-wrap .bottom-container .content .item-box .desc .desc-item {
    font-size: 14px;
  }
}
@media screen and (min-width: 1200px) {
  #app .app-wrapper .container {
    width: 970px;
  }
}
@media screen and (min-width: 1440px) {
  #app .app-wrapper .container {
    width: 1440px;
  }
}
@-moz-keyframes imgscale {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.15);
  }
  100% {
    transform: scale(1);
  }
}
@-webkit-keyframes imgscale {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.15);
  }
  100% {
    transform: scale(1);
  }
}
@-o-keyframes imgscale {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.15);
  }
  100% {
    transform: scale(1);
  }
}
@keyframes imgscale {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.15);
  }
  100% {
    transform: scale(1);
  }
}
